home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / DynamicElements / AppletEx1.wo / AppletEx1.wos < prev    next >
Encoding:
Text File  |  1996-01-28  |  422 b   |  24 lines

  1. id selectedString;
  2. id textFieldValue;
  3. id stringList;
  4. id aString;
  5.  
  6. - awake {
  7.     if (!stringList) {
  8.     stringList = @("All for one; and one for all!", "Carpe Diem!");
  9.     }
  10.     if (!selectedString) {
  11.     selectedString = [stringList objectAtIndex:0];
  12.     }
  13. }
  14.  
  15. - changeBlinkingText {
  16.     if (textFieldValue && [textFieldValue length]) {
  17.     selectedString = textFieldValue;
  18.     textFieldValue=@"";
  19.     } 
  20.     return self;
  21. }
  22.         
  23.     
  24.